home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-048.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  88 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12362);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CVE-2002-1119");
  13.  
  14.  name["english"] = "RHSA-2003-048: python";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   An insecure use of a temporary file has been found in Python.
  21.  
  22.   Python is an interpreted, interactive, object-oriented programming
  23.   language.
  24.  
  25.   Zack Weinberg discovered that os._execvpe from os.py in Python 2.2.1 and
  26.   earlier creates temporary files with predictable names. This could allow
  27.   local users to execute arbitrary code via a symlink attack
  28.  
  29.   All users should upgrade to these errata packages which include a patch to
  30.   python 1.5.2 to correct this issue.
  31.  
  32.  
  33.  
  34.  
  35. Solution : http://rhn.redhat.com/errata/RHSA-2003-048.html
  36. Risk factor : High';
  37.  
  38.  script_description(english:desc["english"]);
  39.  
  40.  summary["english"] = "Check for the version of the python packages";
  41.  script_summary(english:summary["english"]);
  42.  
  43.  script_category(ACT_GATHER_INFO);
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  46.  family["english"] = "Red Hat Local Security Checks";
  47.  script_family(english:family["english"]);
  48.  
  49.  script_dependencies("ssh_get_info.nasl");
  50.  
  51.  script_require_keys("Host/RedHat/rpm-list");
  52.  exit(0);
  53. }
  54.  
  55. include("rpm.inc");
  56. if ( rpm_check( reference:"python-1.5.2-43.72", release:"RHEL2.1") )
  57. {
  58.  security_hole(0);
  59.  exit(0);
  60. }
  61. if ( rpm_check( reference:"python-devel-1.5.2-43.72", release:"RHEL2.1") )
  62. {
  63.  security_hole(0);
  64.  exit(0);
  65. }
  66. if ( rpm_check( reference:"python-docs-1.5.2-43.72", release:"RHEL2.1") )
  67. {
  68.  security_hole(0);
  69.  exit(0);
  70. }
  71. if ( rpm_check( reference:"python-tools-1.5.2-43.72", release:"RHEL2.1") )
  72. {
  73.  security_hole(0);
  74.  exit(0);
  75. }
  76. if ( rpm_check( reference:"tkinter-1.5.2-43.72", release:"RHEL2.1") )
  77. {
  78.  security_hole(0);
  79.  exit(0);
  80. }
  81.  
  82. if ( rpm_exists(rpm:"python-", release:"RHEL2.1") )
  83. {
  84.  set_kb_item(name:"CVE-2002-1119", value:TRUE);
  85. }
  86.  
  87. set_kb_item(name:"RHSA-2003-048", value:TRUE);
  88.